home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 2 / MacMania 2.toast / Demo's / Tools&Utilities / Updaters / Frontier 2.0 => 2.0.1 Upgrader / Install Files / DocServer Docs / date.get < prev    next >
Encoding:
Text File  |  1993-02-25  |  1.1 KB  |  19 lines  |  [TEXT/DOCS]

  1.  
  2. Verb    date.get
  3. Syntax    date.get (date, dayAddr, monthAddr, yearAddr, hourAddr, minuteAddr, secondAddr)
  4. Parameters    date is a date value (stored as an unsigned 32–bit value representing the number of seconds since midnight, January 1, 1904).
  5. dayAddr is the address at which you wish to store the day component of the date.
  6. monthAddr is the address at which you wish to store the month component of the date.
  7. yearAddr is the address at which you wish to store the year component of the date.
  8. hourAddr is the address at which you wish to store the hour component of the date.
  9. minuteAddr is the address at which you wish to store the minute component of the date.
  10. secondAddr is the address at which you wish to store the second component of the date.
  11. Action    Breaks the date into its component parts and stores them where directed.
  12. Returns    True
  13. Examples    date.get (clock.now (), @day, @month, @year, @hour, @minute, @second)
  14.     » true  
  15. Date components are stored in indicated local variables.
  16. See Also    date.set
  17. clock.now
  18. Chapter 9 of the Frontier User Guide, in the script countChangedFiles.
  19.